home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / CHIP 2005-06.iso / program / e-is / OOo_2.0beta_tr_TR_WinIntel / openofficeorg1.cab / TutorialClose.xba < prev    next >
Encoding:
Extensible Markup Language  |  2005-03-21  |  541 b   |  15 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
  3. <script:module xmlns:script="http://openoffice.org/2000/script" script:name="TutorialClose" script:language="StarBasic">REM  *****  BASIC  *****
  4. Dim myCloseDialog As Object
  5.  
  6. Sub TutorialCloseMain
  7.     myCloseDialog = LoadDialog("Tutorials","TutorialCloseDialog")
  8.     myCloseDialog.Execute()
  9. End Sub
  10.  
  11. Sub CloseYes(aEvent)
  12.     myCloseDialog.EndExecute()
  13.     DialogVisible = False
  14. End Sub
  15. </script:module>